36db0d8f2567dbad1be546a4c0c77c963c51f76c,controller/src/test/java/org/jboss/as/controller/transform/description/RecursiveDiscardAndRemoveTestCase.java,RecursiveDiscardAndRemoveTestCase,testRejectResource,#,159

Before Change


        assertTransformed(op, transformed);

        //Check that the op gets rejected for the specific entry child
        op = Util.createAddOperation(PathAddress.pathAddress(PATH, DISCARDED_SPECIFIC, DISCARDED_CHILD));
        transformed = transformOperation(op);
        assertTransformed(op, transformed);
    }

After Change


        rejectResourceOperationsTest(PathAddress.pathAddress(PATH, DISCARDED_WILDCARD_ENTRY, DISCARDED_CHILD));

        //Check that the op gets rejected for the specific entry child
        rejectResourceOperationsTest(PathAddress.pathAddress(PATH, DISCARDED_SPECIFIC, DISCARDED_CHILD));
    }

    private void sanityTestNonDiscardedResource() throws Exception {